home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _ADC14F213F21416DBECC27D4C42B539E < prev    next >
Encoding:
Text File  |  2006-08-04  |  770 b   |  27 lines

  1.  
  2. from PSPApp import *
  3.  
  4. def ScriptProperties():
  5.     return {
  6.         'Author': u'Corel, Inc.',
  7.         'Copyright': u'Copyright (c) 2005 Corel, Inc.  All rights reserved.',
  8.         'Description': 'Factory default preset for High Pass effect',
  9.         'Host': 'Paint Shop Pro 10',
  10.         'Host Version': '10.00',
  11.         }
  12.  
  13. def Preset_HighPass():
  14.     return {
  15.         'Desaturate': False, 
  16.         'Radius': 10, 
  17.          'GeneralSettings': {
  18.             'ExecutionMode': App.Constants.ExecutionMode.Default, 
  19.             'PreviewVisible': True, 
  20.             'AutoProof': False, 
  21.             'AutoActionMode': App.Constants.AutoActionMode.Match
  22.            }
  23.        }
  24.  
  25. def Do(Environment):
  26.     App.Do( Environment, 'HighPass', Preset_HighPass())
  27.